AddByReference(Keyword,String,Byte[]) Method
In This Topic
Add byte[] as attribute value to avoid copying large data
Syntax
'Declaration
Public Overloads Sub AddByReference( _
ByVal As Keyword, _
ByVal As System.String, _
ByVal () As System.Byte _
)
'Usage
Dim instance As DicomImage
Dim keyword As Keyword
Dim VR As System.String
Dim Value() As System.Byte
instance.AddByReference(keyword, VR, Value)
public void AddByReference(
Keyword ,
System.string ,
System.byte[]
)
public procedure AddByReference(
: Keyword;
: System.String;
: System.Bytearray of
);
public function AddByReference(
: Keyword,
: System.String,
: System.byte[]
);
public: void AddByReference(
Keyword ,
System.string* ,
System.byte[]*
)
public:
void AddByReference(
Keyword ,
System.String^ ,
System.array<byte>^
)
Parameters
- keyword
- Attribute tag to add
- VR
- Attribute VR to add
- Value
- Attribute value as byte array
Requirements
Target Platforms: .NET CLR 4.8 or higher
See Also